home *** CD-ROM | disk | FTP | other *** search
- rem
- rem ****************
- rem * DEMOSUBM.BAT *
- rem ****************
- rem
- rem Script to support the Form-based order-entry in the demo
- rem
- rem Bob Denny <rdenny@netcom.com>
- rem 28-Apr-94
- rem
- set of=%output_file%
- echo Content-type:text/plain > %of%
- echo. >> %of%
- if NOT %REQUEST_METHOD%==POST goto done
- echo The following coded string contains your order-entry information. >> %of%
- echo In a real application, this would be decoded and given to an order >> %of%
- echo entry back-end, and a confirmation returned to you as hypertext. >> %of%
- echo. >> %of%
- echo Here is your order information: >> %of%
- echo. >> %of%
- type %CONTENT_FILE% >> %of%
- :done
-
-
-